home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / prg_gen / jav503.zip / MOVIE.JAV < prev    next >
Text File  |  1996-05-01  |  979b  |  105 lines

  1. // -[KeepHeading]-
  2.  
  3.  
  4. // -[Copyright]-
  5.  
  6. /**
  7.  * 
  8.  */
  9. import java.lang.*;
  10.  
  11.  
  12. // -[KeepBeforeClass]-
  13.  
  14.  
  15. // -[Class]-
  16.  
  17. /**
  18.  * @jTitle           Movie
  19.  * @jAuthor          Chris Colman
  20.  * @jOverridability  can be overridden
  21.  * @jDescription
  22.  * A film title which is stored on one or more video tapes belonging
  23.  * to this store.
  24.  * 
  25.  * @see              
  26.  */
  27. public 
  28. class Movie
  29. {
  30. // -[KeepWithinClass]-
  31.  
  32.  
  33. // -[Fields]-
  34.  
  35.  
  36.  
  37. /**
  38.  * Co star of the film.
  39.  */
  40. protected String coStar;
  41.  
  42.  
  43.  
  44. /**
  45.  * Star of the film.
  46.  */
  47. protected String star;
  48.  
  49.  
  50.  
  51. /**
  52.  * Title of film.
  53.  */
  54. protected String title;
  55.  
  56. /**
  57.  * Association declarations
  58.  */
  59.  
  60.  
  61.  
  62.  
  63. /**
  64.  * Association declarations
  65.  */
  66.  
  67.  
  68.  
  69.  
  70. /**
  71.  * Association declarations
  72.  */
  73.  
  74.  
  75.  
  76.  
  77. /**
  78.  * Association declarations
  79.  */
  80.  
  81.  
  82.  
  83. /**
  84.  * Association declarations
  85.  */
  86.  
  87.  
  88.  
  89. /**
  90.  * Association declarations
  91.  */
  92.  
  93.  
  94. /**
  95.  * Association declarations
  96.  */
  97.  
  98.  
  99.  
  100. // -[Methods]-
  101.  
  102. }
  103.  
  104.  
  105.